Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@mdit-vue/plugin-sfc
Advanced tools
A markdown-it plugin to help transforming markdown to Vue SFC.
<script>
and <style>
tags and extract them into to markdown-it env.sfcBlocks
.env.sfcBlocks.template
for convenience.npm i @mdit-vue/plugin-sfc
This plugin will only take effects when the html
option of markdown-it is enabled:
import MarkdownIt from 'markdown-it';
import { sfcPlugin } from '@mdit-vue/plugin-sfc';
import type { MarkdownItEnv } from '@mdit-vue/types';
const md = MarkdownIt({ html: true }).use(sfcPlugin, {
// options
});
const env: MarkdownItEnv = {};
const rendered = md.render(
`\
# foo
<script>
console.log('bar')
</script>
`,
env,
);
console.log(env.sfcBlocks);
Type: string[]
Default: []
Details:
SFC custom blocks to be extracted.
By default, only <script>
and <style>
tags will be extracted. You can set this option to support SFC custom blocks in markdown.
For example, if you set this option to ['i18n']
, the <i18n>
tag in your markdown content will be extracted to env.sfcBlocks.customBlocks
and won't appear in the rendered result.
FAQs
A markdown-it plugin to help transforming markdown tu vue sfc
We found that @mdit-vue/plugin-sfc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.